.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  opacity: 1;
}
.row {
  display: flex;
  flex-direction: row;
}
.preloader-box {
  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}
.preloader-box::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: gray;
  animation: preloader-animation 1.5s infinite ease-in-out;
}
@keyframes preloader-animation {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #ddd;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
header nav {
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}
header nav ul li {
  margin: 0 15px;
  font-size: 18px;
  color: #666;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
header nav ul li:hover {
  font-weight: 700;
}
.logo {
  height: 90%;
}
header nav ul li.active {
  color: #333;
}
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.hero-section-image {
  height: calc(100% - 60px);
}
.mainHeading {
  font-size: 28px;
  color:rgb(39, 177, 117);
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  margin-bottom: 5px;
  
  text-wrap: normal;
}
.hero-section .description {
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  margin-top: 10px;
  color: #1b2e35;
  font-weight: 600;
  margin-bottom: 35px;
}
.main-page-button {
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease-in-out;
  margin: 10px;
  font-weight: 500;
}
.main-page-button:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.whychooseus {
  font-size: 18px;
  margin-left: 25px;
  display: flex;
  flex-direction: row;
  background: url("../Assets/3026238.jpg") no-repeat right center;
  background-size: contain;
  padding: 20px;
  min-height: calc(100vh - 60px);
  color: #1b2e35;
  font-family: "Roboto", sans-serif;
  position: relative;
  padding-bottom: 50px;
  border-bottom: 1px solid #ddd;
}
.column {
  display: flex;
  flex-direction: column;
}
.whychooseus .heading {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  background-color: #00DFC0;
  padding: 10px 20px;
  margin-right: 15px;
  width: min-content;
}
.whychooseus .text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}
.whychooseus .text b {
  font-size: 20px;
  font-weight: 700;
  color: #1b2e35;
  margin-left: 5px;
}
.whychooseus .text li {
  margin-top: 3px;
  margin-bottom: 3px;
}
.whychooseus img {
  height: calc(100vh - 60px);
}
.ourservices {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}
.ourservices .heading {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #1b2e35;
  margin-bottom: 20px;
}
.service{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  min-height: 300px;
  cursor: pointer;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.service span {
  font-size: 72px;
  color: #1b2e35;
  margin-bottom: 10px;
}
.service .service-heading {
  font-size: 20px;
  font-weight: 700;
  color: #1b2e35;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;

}
.service .service-description {
  font-size: 16px;
  color: #666;
  text-align: center;
  font-family: "Lato", sans-serif;
}
.howwework {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
}
.howwework .heading {
  font-family: "Lexend", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #1b2e35;
  margin-bottom: 20px;
}
.howwework .step {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  color: #1b2e35;
}
.howwework .step b{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 10px;
  padding: 20px;
  background-color:#1b2e35;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.howwework .step b:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.howwework .description {
  font-size: 18px;
  color: #666;
  font-family: "Lato", sans-serif;
  margin-left: 20px;
  flex: 1;
}
footer {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #1b2e35;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Roboto", sans-serif;
  border-top: 1px solid #ddd;
  overflow-x: auto;
}
div.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
div.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
div.footer-logo img {
  height: 140px;
}

div.footer-text a {
  color: #00DFC0;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
div.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}
div.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
  color: #fff;
  font-family: "Lato", sans-serif;
}
#chat-bot{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #1b2e35;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #fff;
  border: 1px solid #00DFC0;
}
#chat-bot:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
 .whychooseus{
  background: none;
 }
  
}
@media (max-width: 769px) {
  header nav ul {
    display: none
  }
  header nav ul li {
    margin: 10px 0;
  }
  .hero-section {
    flex-direction: column;
    height: auto;
  }
  .hero-section-image {
    position: static;
    width: 100%;
    height: auto;
  }
  .whychooseus {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    height: auto;
  }
  .whychooseus img {
    width: 100%;
    height: auto;
  }
  .whychooseus .heading {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .whychooseus {
    background: none;
  }
  .whychooseus .text {
    text-align: left;
    padding: 0 20px;
  }
  .ourservices {
    overflow-x: auto;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
  }
  .ourservices .service {
    width: 100%;
    max-width: 90%;
    margin: 10px 0;
  }
  .howwework {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo img{
    width: 80%;
    height: auto;
  }
  footer{
    height: auto;
    padding-top: 10px;
  }

}
